home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.app.test;
-
- import com.extensibility.app.ApplicationPreferences;
- import com.extensibility.app.BaseDocument;
- import com.extensibility.app.BaseWindow;
-
- class TestApplication$TestWindow extends BaseWindow {
- public TestApplication$TestWindow(BaseDocument var1) {
- super(var1);
- }
-
- public void initialize(ApplicationPreferences var1) {
- super.initialize(var1);
- }
-
- protected void setEditEnable() {
- }
-
- public String getClassName() {
- return "com.extensibility.app.test.TestApplication$TestWindow";
- }
-
- protected String getText() {
- return ((TestApplication.TestDocument)((BaseWindow)this).getDocument()).getText();
- }
-
- protected boolean canFind() {
- return false;
- }
-
- protected void doFind(String var1, boolean var2) {
- }
-
- public String getSelectedText() {
- return null;
- }
-
- public boolean setSelectedText(String var1) {
- return false;
- }
- }
-